home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / esc.jar / com / extensibility / app / BaseWindowEdit.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-06-30  |  843 b   |  26 lines

  1. package com.extensibility.app;
  2.  
  3. public abstract class BaseWindowEdit extends BaseEdit {
  4.    BaseWindow window;
  5.  
  6.    public BaseWindowEdit(BaseWindow var1) {
  7.       super("");
  8.       this.window = var1;
  9.       ((BaseEdit)this).setDocument(var1.getDocument());
  10.    }
  11.  
  12.    public BaseWindowEdit(BaseWindow var1, String var2) {
  13.       super(var2);
  14.       this.window = var1;
  15.       ((BaseEdit)this).setDocument(var1.getDocument());
  16.    }
  17.  
  18.    public BaseWindow getWindow() {
  19.       return this.window;
  20.    }
  21.  
  22.    public void setWindow(BaseWindow var1) {
  23.       this.window = var1;
  24.    }
  25. }
  26.